New York Boroughs¶
Download this notebook from GitHub (right-click to download).
import geopandas as gpd
import geoviews as gv
import cartopy.crs as ccrs
gv.extension('bokeh')
Define data¶
tiles = gv.tile_sources.Wikipedia
# Project data to Web Mercator
nybb = gpd.read_file(gpd.datasets.get_path('nybb'))
poly_data = nybb.to_crs(ccrs.GOOGLE_MERCATOR.proj4_init)
polys = gv.Polygons(poly_data, vdims=['BoroName'], crs=ccrs.GOOGLE_MERCATOR)
Plot¶
tiles * polys.opts(color='BoroName', cmap='Category20', width=800, height=600, tools=['hover', 'tap'])
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.
Download this notebook from GitHub (right-click to download).